home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / MISC / DSP4TEST.ZIP / TST1.ASM < prev    next >
Encoding:
Assembly Source File  |  1994-02-27  |  238 b   |  18 lines

  1. ; First set parallel i/o line to pattern 55H, then echo everything from the
  2. ; serial line to the serial line
  3.  
  4.     nolist
  5.     include 'leonid'
  6.     list
  7.  
  8.     org    p:user_code
  9.  
  10.     move            #>$ff,x0
  11.     putio
  12.  
  13. loop    getc
  14.     putc
  15.     jmp    loop
  16.  
  17.     end
  18.